home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / Monster4.h < prev    next >
C/C++ Source or Header  |  1999-01-19  |  1KB  |  34 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Monster4H
  3. #define Monster4H
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TForm1 : public TForm
  12. {
  13. __published:    // IDE-verwaltete Komponenten
  14.     TButton *Button1;
  15.     TGroupBox *GroupBox2;
  16.     TLabel *Label1;
  17.     TLabel *Label2;
  18.     TLabel *Label3;
  19.     TGroupBox *GroupBox1;
  20.     TImage *Image1;
  21.     void __fastcall FormCreate(TObject *Sender);
  22.     
  23.     void __fastcall Button1Click(TObject *Sender);
  24.     
  25.     
  26. private:    // Benutzer-Deklarationen
  27. public:        // Benutzer-Deklarationen
  28.     __fastcall TForm1(TComponent* Owner);
  29. };
  30. //---------------------------------------------------------------------------
  31. extern TForm1 *Form1;
  32. //---------------------------------------------------------------------------
  33. #endif
  34.